home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat2 / chdir.0 < prev    next >
Text File  |  1996-09-01  |  3KB  |  76 lines

  1.  
  2. CHDIR(2)                   UNIX Programmer's Manual                   CHDIR(2)
  3.  
  4. NNAAMMEE
  5.      cchhddiirr, ffcchhddiirr - change current working directory
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<uunniissttdd..hh>>
  9.  
  10.      _i_n_t
  11.      cchhddiirr(_c_o_n_s_t _c_h_a_r _*_p_a_t_h)
  12.  
  13.      _i_n_t
  14.      ffcchhddiirr(_i_n_t _f_d)
  15.  
  16. DDEESSCCRRIIPPTTIIOONN
  17.      The _p_a_t_h argument points to the pathname of a directory.  The cchhddiirr()
  18.      function causes the named directory to become the current working direc-
  19.      tory, that is, the starting point for path searches of pathnames not be-
  20.      ginning with a slash, `/'.
  21.  
  22.      The ffcchhddiirr() function causes the directory referenced by _f_d to become the
  23.      current working directory, the starting point for path searches of path-
  24.      names not beginning with a slash, `/'.
  25.  
  26.      In order for a directory to become the current directory, a process must
  27.      have execute (search) access to the directory.
  28.  
  29. RREETTUURRNN VVAALLUUEESS
  30.      Upon successful completion, a value of 0 is returned.  Otherwise, a value
  31.      of -1 is returned and _e_r_r_n_o is set to indicate the error.
  32.  
  33. EERRRROORRSS
  34.      CChhddiirr() will fail and the current working directory will be unchanged if
  35.      one or more of the following are true:
  36.  
  37.      [ENOTDIR]     A component of the path prefix is not a directory.
  38.  
  39.      [ENAMETOOLONG]
  40.                    A component of a pathname exceeded {NAME_MAX} characters,
  41.                    or an entire path name exceeded {PATH_MAX} characters.
  42.  
  43.      [ENOENT]      The named directory does not exist.
  44.  
  45.      [ELOOP]       Too many symbolic links were encountered in translating the
  46.                    pathname.
  47.  
  48.      [EACCES]      Search permission is denied for any component of the path
  49.                    name.
  50.  
  51.      [EFAULT]      _P_a_t_h points outside the process's allocated address space.
  52.  
  53.      [EIO]         An I/O error occurred while reading from or writing to the
  54.                    file system.
  55.  
  56.      FFcchhddiirr() will fail and the current working directory will be unchanged if
  57.      one or more of the following are true:
  58.  
  59.      [EACCES]      Search permission is denied for the directory referenced by
  60.                    the file descriptor.
  61.  
  62.      [ENOTDIR]     The file descriptor does not reference a directory.
  63.  
  64.      [EBADF]       The argument _f_d is not a valid file descriptor.
  65.  
  66. SSEEEE AALLSSOO
  67.      chroot(2)
  68.  
  69. SSTTAANNDDAARRDDSS
  70.      The cchhddiirr() is expected to conform to IEEE Std1003.1-1988 (``POSIX'').
  71.  
  72. HHIISSTTOORRYY
  73.      The ffcchhddiirr() function call appeared in 4.2BSD.
  74.  
  75. 4th Berkeley Distribution      December 11, 1993                             2
  76.